/* Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #475569;
    --accent-color: #f59e0b;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-color: #94a3b8;
    --border-color: #e2e8f0;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f1f5f9;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navbar Styles */
  .navbar {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
  }
  
  .logo i {
    font-size: 24px;
    color: var(--primary-color);
  }
  
  .logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }
  
  .tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin: 0;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
  }
  
  .page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease;
  }
  
  .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
  }
  
  /* Terms Section */
  .terms-section {
    padding: 60px 0;
  }
  
  .card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeIn 0.8s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .card-header {
    background-color: var(--light-color);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .card-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-color);
  }
  
  .card-body {
    padding: 25px;
  }
  
  .card-body h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .card-body h3 i {
    color: var(--primary-color);
    font-size: 1rem;
  }
  
  .card-body p {
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .card-body strong {
    color: var(--dark-color);
    font-weight: 600;
  }
  
  .process-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .process-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .process-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  .important-note {
    border-left: 4px solid var(--danger-color);
  }
  
  .important-note .card-header i {
    color: var(--danger-color);
  }
  
  /* Footer Styles */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    max-width: 300px;
  }
  
  .footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .footer-logo p {
    color: var(--gray-color);
    font-size: 0.9rem;
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-column h3:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: var(--gray-color);
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover,
  .footer-column ul li a.active {
    color: white;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    color: var(--gray-color);
    font-size: 0.9rem;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .footer-content {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-logo {
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .footer-links {
      justify-content: space-between;
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      gap: 15px;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-link {
      display: block;
      margin: 5px 0;
    }
  
    .page-title {
      font-size: 2rem;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .card-header {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  
    .process-list li {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }
  
    .process-list li i {
      margin-bottom: 5px;
    }
  
    .hero {
      padding: 100px 20px 40px;
    }
  
    .page-title {
      font-size: 1.8rem;
    }
  
    .subtitle {
      font-size: 1rem;
    }
  }
  
  